Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mdast-zone

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mdast-zone

HTML comments as ranges or markers in remark

  • 2.0.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

mdast-zone Build Status Coverage Status Chat

MDAST utility to treat HTML comments as ranges or markers. Useful as a base for remark plugins.

Installation

npm:

npm install mdast-zone

mdast-zone is also available as an AMD, CommonJS, and globals module, uncompressed and compressed.

Usage

var zone = require('mdast-zone');
var remark = require('remark');

Callback invoked when a range is found.

function onrun(start, nodes, end) {
    return [
        start.node,
        {
            'type': 'paragraph',
            'children': [
                {
                    'type': 'text',
                    'value': 'Bar'
                }
            ]
        },
        end.node
    ];
}

Process a document.

var doc = remark().use(zone({
    'name': 'foo',
    'onrun': onrun
})).process(
    '<!--foo start-->\n' +
    '\n' +
    'Foo\n' +
    '\n' +
    '<!--foo end-->\n'
);

Yields:

<!--foo start-->

Bar

<!--foo end-->

API

Note that mdast-zone is not a plugin by itself. It should be used by a remark plugin.

zone(options)

The goal of zone is two fold:

  1. Configuration during remarks parse and/or stringification stage, using markers;

  2. Transforming parts of a document without affecting other parts, which is not visible when rendering to HTML, using ranges (a starting marker, followed by nodes, and an ending marker).

The first is exposed by this plugin in the form of an HTML comment which sort-of looks like a self-closing, custom tag. The second by placing starting and ending tags, as siblings, in a parent.

options
  • name (string) — Type to look for;
  • onparse (Function, optional) — Callback invoked when a marker is found during parsing;
  • onstringify (Function, optional) — Callback invoked when a marker is found during stringification;
  • onrun (Function, optional) — Callback invoked when a range is found during transformation.
Returns

Function, which should be passed to remark.use().

function onparse(marker)
function onstringify(marker)

When passing name: "foo" and onparse: console.log.bind(console) to zone(), comments in the form of <!--foo bar="baz" qux--> are detected and onparse is invoked during the parsing phase.

An onstringify method could (instead, or both) be passed to zone(), which would be invoked with the same marker but during the stringification phase.

Parameters
function onrun(start, nodes, end, scope)

Invoked during the transformation phase with markers which determine a range: two markers, the first start and the last end, and the content inside.

Parameters
  • start (Marker) — Start of range;

  • nodes (Array.<Node>) — Nodes between start and end;

  • end (Marker) — End of range.

  • scope (Object):

    • parent (Node) — Parent of the range;
    • start (number) — Index of start in parent;
    • end (number) — Index of end in parent.
Returns

Array.<Node>? — Zero or more nodes to replace the range (including start and ends markers) with.

License

MIT © Titus Wormer

Keywords

FAQs

Package last updated on 13 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc